home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / fax / src / port / aix32 / vsyslog.c < prev   
C/C++ Source or Header  |  1994-08-01  |  254b  |  18 lines

  1. #include <stdio.h>
  2. #include <sys/types.h>
  3. #include <stdarg.h>
  4. #include <sys/syslog.h>
  5.  
  6. void
  7. vsyslog(pri, fmt, ap)
  8.     int pri;
  9.     register const char *fmt;
  10.     va_list ap;
  11. {
  12.     char tbuf[2048];
  13.  
  14.     (void)vsprintf(tbuf, fmt, ap);
  15.     (void)syslog(pri, tbuf);
  16.     return;
  17. }
  18.